home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Utilities / Programming / Cloaker 1.2a / whacked lib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-19  |  646 b   |  22 lines  |  [TEXT/KAHL]

  1. /*  Whacked encryption
  2.     (c) opyright 1995 by Grant Guenther
  3.     
  4.     Currently, this code is for Mac programming only--if there is enough
  5.     request, I'd be happy to "port" this to "normal" C so that Mac 
  6.     programmers who want great encyrption but don't know Mac programming
  7.     or IBM programmers can use it.  */
  8.  
  9.  
  10. #ifndef WHACKED_LIB
  11. #define WHACKED_LIB
  12.  
  13. #define gWVrsn "\p1.0a"
  14.  
  15. void EncodeW(Handle theHandle, Str255 theKey, Boolean alpha, Boolean beta,
  16.             Boolean gamma, Boolean delta);
  17.  
  18. void DecodeW(Handle theHandle, Str255 theKey, Boolean alpha, Boolean beta,
  19.             Boolean gamma, Boolean delta);
  20.             
  21. #endif
  22.